home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 2002 November / SGI Freeware 2002 November - Disc 3.iso / dist / fw_qt3.idb / usr / freeware / Qt / examples / opengl / box / glbox.h.z / glbox.h
C/C++ Source or Header  |  2002-04-08  |  1KB  |  55 lines

  1. /****************************************************************************
  2. ** $Id:  qt/glbox.h   3.0.3   edited Oct 12 12:18 $
  3. **
  4. ** Copyright (C) 1992-2000 Trolltech AS.  All rights reserved.
  5. **
  6. ** This file is part of an example program for Qt.  This example
  7. ** program may be used, distributed and modified without limitation.
  8. **
  9. *****************************************************************************/
  10.  
  11. /****************************************************************************
  12. **
  13. ** This is a simple QGLWidget displaying an openGL wireframe box
  14. **
  15. ****************************************************************************/
  16.  
  17. #ifndef GLBOX_H
  18. #define GLBOX_H
  19.  
  20. #include <qgl.h>
  21.  
  22.  
  23. class GLBox : public QGLWidget
  24. {
  25.     Q_OBJECT
  26.  
  27. public:
  28.  
  29.     GLBox( QWidget* parent, const char* name );
  30.     ~GLBox();
  31.  
  32. public slots:
  33.  
  34.     void        setXRotation( int degrees );
  35.     void        setYRotation( int degrees );
  36.     void        setZRotation( int degrees );
  37.  
  38. protected:
  39.  
  40.     void        initializeGL();
  41.     void        paintGL();
  42.     void        resizeGL( int w, int h );
  43.  
  44.     virtual GLuint     makeObject();
  45.  
  46. private:
  47.  
  48.     GLuint object;
  49.     GLfloat xRot, yRot, zRot, scale;
  50.  
  51. };
  52.  
  53.  
  54. #endif // GLBOX_H
  55.